home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / interp / perl5.005.tar.gz / perl5.005.tar / perl5.005 / patchlevel.h < prev    next >
C/C++ Source or Header  |  1998-07-22  |  2KB  |  51 lines

  1. #ifndef __PATCHLEVEL_H_INCLUDED__
  2. #define PATCHLEVEL 5
  3. #define SUBVERSION 0
  4.  
  5. /*
  6.     local_patches -- list of locally applied less-than-subversion patches.
  7.     If you're distributing such a patch, please give it a name and a
  8.     one-line description, placed just before the last NULL in the array
  9.     below.  If your patch fixes a bug in the perlbug database, please
  10.     mention the bugid.  If your patch *IS* dependent on a prior patch,
  11.     please place your applied patch line after its dependencies. This
  12.     will help tracking of patch dependencies.
  13.  
  14.     Please edit the hunk of diff which adds your patch to this list,
  15.     to remove context lines which would give patch problems.  For instance,
  16.     if the original context diff is
  17.        *** patchlevel.h.orig    <date here>
  18.        --- patchlevel.h    <date here>
  19.        *** 38,43 ***
  20.        --- 38,44 ---
  21.              ,"FOO1235 - some patch"
  22.              ,"BAR3141 - another patch"
  23.              ,"BAZ2718 - and another patch"
  24.        +     ,"MINE001 - my new patch"
  25.              ,NULL
  26.          };
  27.     
  28.     please change it to 
  29.        *** patchlevel.h.orig    <date here>
  30.        --- patchlevel.h    <date here>
  31.        *** 41,43 ***
  32.        --- 41,44 ---
  33.        +     ,"MINE001 - my new patch"
  34.          };
  35.     
  36.     (Note changes to line numbers as well as removal of context lines.)
  37.     This will prevent patch from choking if someone has previously
  38.     applied different patches than you.
  39.  */
  40. static    char    *local_patches[] = {
  41.     NULL
  42.     ,NULL
  43. };
  44.  
  45. /* Initial space prevents this variable from being inserted in config.sh  */
  46. #  define    LOCAL_PATCH_COUNT    \
  47.     (sizeof(local_patches)/sizeof(local_patches[0])-2)
  48.  
  49. #  define __PATCHLEVEL_H_INCLUDED__
  50. #endif
  51.